Saltar al contenido principal

Overview ai Product Documentation 21124ca12582803bb843cda6b4d4e5c6

title: Descripción General
---

import React, {useState} from 'react';
import Link from '@docusaurus/Link';

export function Section({ title, subtitle, children, id }) {
return (
<section id={id} className="margin-bottom--xl">
<div className="margin-bottom--sm">
<h2 className="margin-bottom--xs" style={{display: 'flex', alignItems: 'center', gap: '0.5rem'}}>
{title}
{id && (
<a
href={`#${id}`}
className="hash-link"
aria-label={`Direct link to ${title}`}
title={`Direct link to ${title}`}
style={{
opacity: 0.5,
fontSize: '0.8em',
marginLeft: '0.5rem',
textDecoration: 'none',
color: 'var(--ifm-color-emphasis-600)'
}}
>
#
</a>
)}
</h2>
{subtitle && <p className="text--secondary">{subtitle}</p>}
</div>
{children}
</section>
);
}

export function Card({ title, desc, icon, href }) {
return href ? (
<Link className="card padding--md" to={href} style={{height: '100%'}}>
<div className="card__body">
{icon && <div style={{fontSize: '1.5rem', marginBottom: '0.25rem'}}>{icon}</div>}
<h3 className="margin-bottom--xs">{title}</h3>
<p className="margin--none">{desc}</p>
</div>
</Link>
) : (
<div className="card padding--md" style={{height: '100%'}}>
<div className="card__body">
{icon && <div style={{fontSize: '1.5rem', marginBottom: '0.25rem'}}>{icon}</div>}
<h3 className="margin-bottom--xs">{title}</h3>
<p className="margin--none">{desc}</p>
</div>
</div>
);
}

export function Grid({ children }) {
return (
<div className="row">
{React.Children.map(children, (child, idx) => (
<div className="col col--4 margin-bottom--md" key={idx}>
{child}
</div>
))}
</div>
);
}

export function Tabs({ tabs }) {
const [i, setI] = useState(0);
return (
<div>
<div className="margin-bottom--sm">
{tabs.map((t, idx) => (
<button
key={idx}
onClick={() => setI(idx)}
className={`button button--sm ${i === idx ? 'button--primary' : 'button--secondary'} margin-right--sm margin-bottom--sm`}
>
{t.label}
</button>
))}
</div>
<div>{tabs[i].content}</div>
</div>
);
}

export function Callout({ type = 'info', title, children }) {
const klass = type === 'tip' ? 'alert alert--success' : type === 'caution' ? 'alert alert--warning' : 'alert alert--info';
return (
<div className={klass}>
<div className="margin-bottom--xs"><strong>{title}</strong></div>
<div className="text--secondary">{children}</div>
</div>
);
}

export function TableOfContents() {
return (
<div className="col col--4">
<div className="thin-scrollbar theme-doc-toc-desktop custom-toc">
<ul className="table-of-contents table-of-contents__left-border">
<li>
<a href="#getting-started" className="table-of-contents__link toc-highlight">
Getting Started
</a>
</li>
<li>
<a href="#concepts" className="table-of-contents__link toc-highlight">
Concepts
</a>
</li>
<li>
<a href="#how-to-guides" className="table-of-contents__link toc-highlight">
How-To Guides
</a>
</li>
<li>
<a href="#tutorials" className="table-of-contents__link toc-highlight">
Tutorials
</a>
</li>
<li>
<a href="#reference" className="table-of-contents__link toc-highlight">
Reference
</a>
</li>
<li>
<a href="#troubleshooting-maintenance" className="table-of-contents__link toc-highlight">
Troubleshooting + Maintenance
</a>
</li>
<li>
<a href="#faqs" className="table-of-contents__link toc-highlight">
FAQs
</a>
</li>
</ul>
</div>
</div>
);
}

export function OverviewPreview() {
return (
<div className="container margin-top--lg margin-bottom--lg">
<div className="row">
<div className="col col--12">
<header className="margin-bottom--lg">
<p className="text--secondary">Welcome! Pick a path to get productive fast.</p>
</header>

<Section title="Getting Started" subtitle="Everything a new user or operator needs to get up and running." id="getting-started">
<Grid>
<Card title="Quick Install Guide" desc="Install the OV80i in minutes. Requirements, steps, and checks." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Quick%20Install%20Guide%2021124ca12582806ea5fdec945c8fbf82" />
<Card title="Product Activation" desc="License activation and first boot walkthrough." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Product%20Activation%2021524ca12582803ea3b9c15ef175ba7f" />
<Card title="First‑Time Checklist" desc="Verify power, network, and optics before go‑live." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/First-Time%20Checklist%2021124ca1258280508d11d607a5b61df3" />
<Card title="Basic Navigation" desc="Tour the UI: HMI, Recipes, Library, Settings." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Basic%20Navigation%2021524ca12582808b8e91e00c0ed08f3d" />
<Card title="Logging In & Browser Compatibility" desc="Roles, users, and supported browsers." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Logging%20In%20&%20Browser%20Compatibility%2021124ca1258280d8b4fcfadc1812ca8e" />
<Card title="LED Indicators Explained" desc="What each LED means and what to do." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/LED%20Indicators%20Explained%2021124ca1258280759253c9bb51e3235a" />
<Card title="Creating Your First Recipe" desc="From camera image to a running inspection." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Creating%20Your%20First%20Recipe%2021524ca125828019acacea3a745ea3d1" />
<Card title="How to Find the Camera's IP" desc="Zero‑config discovery and IP troubleshooting." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/How%20to%20Find%20the%20Camera's%20IP%2021124ca12582801286d3ca39f1c79e9b" />
</Grid>
</Section>

<Section title="Concepts" subtitle="High‑level explanations for engineers, IT, and advanced users." id="concepts">
<Grid>
<Card title="What is the OV80i System?" desc="Architecture: camera, HMI, network, data flow." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/What%20is%20the%20OV80i%20System%2021524ca12582807ba341e893bfca04d3" />
<Card title="Recipes & All‑Recipes" desc="How recipes work, versioning, and switching." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Recipes%20&%20All-Recipes%20Home%2021524ca1258280998e27ffc0d3118c40" />
<Card title="Imaging Setup Fundamentals" desc="Lighting, exposure, lensing, and focus basics." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Imaging%20Setup%20Fundamentals%2021524ca1258280208017cba53b55e56c" />
<Card title="Template & Alignment Theory" desc="How alignment works under the hood." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Template%20Image%20&%20Alignment%20Theory%2021524ca12582803ebd66e266fc70c349" />
<Card title="Inspection Setup & ROI Types" desc="ROI taxonomy, when to use which." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Inspection%20Setup%20&%20ROI%20Types%2021524ca1258280a1aaece3725a226c34" />
<Card title="Camera Communication" desc="On‑device services, protocols, message flow." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Camera%20Communication%20Architecture%2021624ca1258280cdaef7d19dca5ff2dc" />
<Card title="System Settings Architecture" desc="Where settings live and how they apply." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/System%20Settings%20Architecture%2021724ca12582804f911eeb30c473c440" />
<Card title="Networking: IP/Subnet" desc="Subnetting basics for controls engineers." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Networking%20IP%20Subnet%2021724ca12582802fa272ec2770aa5f87" />
<Card title="Classifier vs Segmenter" desc="Choose the right model for your task." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Classifier%20vs%20Segmenter%2021524ca12582806abc5ccfe6db3d91e7" />
<Card title="Triggering Modes" desc="Manual, digital, and sensor triggers." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Triggering%20Modes%20Manual%20Digital%20Sensor%2021524ca12582800d868bf36b525a9f88" />
<Card title="Digital I/O Logic" desc="NPN vs PNP wiring and logic levels." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Digital%20I%20O%20Logic%20NPN%20vs%20PNP%2021524ca1258280f19ab5d64c000065ca" />
<Card title="Node‑RED Basics" desc="Develop flows and integrations." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Node-RED%20Basics%2021524ca12582800c98cae0a7e971bd8b" />
<Card title="Users & Permissions" desc="Roles and access control." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Users%20&%20Permissions%2021524ca1258280c986f7e91172b15a04" />
<Card title="Library & Image Management" desc="Organize, label, and manage images." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Library%20&%20Image%20Management%2021524ca125828076953cecc7353ae3d4" />
<Card title="HMI Screen" desc="Understand the on‑device HMI layout." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/HMI%20Screen%20%E2%86%90OV%20DOCS%2021524ca1258280ebb06beaafaf1d00e1" />
</Grid>
</Section>

<Section title="How‑To Guides" subtitle="Practical, step‑by‑step guides for configuring the system." id="how-to-guides">
<Tabs
tabs={[
{
label: 'Comms & I/O',
content: (
<Grid>
<Card title="Power + M12 Wiring" desc="Power pinout and M12 quick starts." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Power%20+%20M12%20Wiring%20Guide%2021124ca1258280b9b1f1d82385447bba" />
<Card title="Ethernet & IP" desc="Static/DHCP, switches, and IP ranges." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Configure%20Ethernet%20&%20IP%2021124ca12582809face2f3787df1a9e2" />
<Card title="Digital Output Logic" desc="Active‑high/low, NPN/PNP wiring." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Set%20Digital%20Output%20Logic%2021f24ca1258280d9a958edd49c0c4df6" />
<Card title="Digital Input Trigger" desc="Sensors, debounce, and timing." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Digital%20Input%20Trigger%20Setup%2021f24ca125828073afb8cc1ff02896d7" />
<Card title="TCP Setup" desc="Send results via TCP." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/TCP%20Communication%20Setup%2021f24ca125828058a5c0ebab67b92980" />
<Card title="MQTT Setup" desc="Topics, payloads, and QoS." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/MQTT%20Communication%20Setup%2021f24ca125828015854bed4a36b08872" />
<Card title="RS‑232 in Node‑RED" desc="Serial comms flow template." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/RS-232%20Communication%20Setup%20Node-Red%2021524ca1258280f393d5d83f549f5193" />
<Card title="FTP Image Export" desc="Export captured images via FTP." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/FTP%20Image%20Export%20%E2%86%90OV%20DOCS%2021524ca125828044bb6adc77f3023efa" />
<Card title="Connect to PLC" desc="EtherNet/IP & PROFINET notes." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Connect%20to%20PLC%20Ethernet%20IP%20Profinet%2021524ca1258280eea0c5fbbec9445b7f" />
</Grid>
),
},
{
label: 'Vision & Training',
content: (
<Grid>
<Card title="Imaging Setup Walkthrough" desc="Light, lens, focus, exposure." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Imaging%20Setup%20Walkthrough%2021524ca1258280bbb2cdd6fb5649b346" />
<Card title="Train a Classifier" desc="Class labels, balancing, testing." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Train%20a%20Classifier%2021f24ca125828044acd4dc9fd1c2add0" />
<Card title="Train a Segmenter" desc="Masks, augmentations, metrics." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Train%20a%20Segmenter%2021524ca125828006bd95d85823f11096" />
<Card title="Use the Aligner" desc="Template creation & validation." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Use%20the%20Aligner%20Tool%2022324ca12582808db1aaefe94a8f62bf" />
<Card title="Download Logs" desc="Diagnostics for support." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Download%20Logs%2021524ca1258280508c86dd10fcd7d521" />
<Card title="Update Firmware" desc="Safe update & rollback." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Update%20Firmware%2021524ca1258280bfa2e6fff905607aca" />
<Card title="Metadata on HMI" desc="Display custom fields." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Metadata%20Setup%2021524ca1258280dea4c1c173c7ce0e87" />
<Card title="System Settings" desc="Configure network, time, and logs." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/System%20Settings%20Network%20Time%20Logs%2022324ca1258280c69474df3e7c8c645e" />
<Card title="Lens Selection & Installation" desc="Pick and mount the right lens." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Lens%20Selection%20%26%20Installation%2022524ca1258280b5a6f6e75d14ea7de8" />
<Card title="Inspection Setup Wizard" desc="Configure ROIs with the wizard." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Inspection%20Setup%20Wizard%20how%20to%20configure%20ROIs%2022524ca12582802bafa1d37a53f9d49d" />
</Grid>
),
},
]}
/>
</Section>


<Section title="Tutorials" subtitle="Full walkthroughs for real‑world applications." id="tutorials">
<Grid>
<Card title="Using a Classifier" desc="Single‑ROI example end‑to‑end." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Using%20a%20Classifier%20Single-ROI%20Example%2021524ca1258280dc88d9f80b5e2df8cb" />
<Card title="Trigger over MQTT" desc="Fire inspections via MQTT." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Trigger%20over%20MQTT%2022324ca12582807ab1e2c155fd49a916" />
<Card title="Recipe Change via HTTP" desc="Switch recipes using HTTP + Node‑RED." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Recipe%20Change%20via%20HTTP%20with%20Node-red%2022324ca1258280519e4dcd43cfe62559" />
<Card title="Using the Segmenter" desc="Train and evaluate segmentation." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Using%20the%20Segmenter%2022424ca1258280d58a35e0ee152b7244" />
<Card title="Adding Data & Retraining" desc="Improve model with new data." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Adding%20Data%20%26%20Retraining%2022424ca1258280c998b4efae804ed962" />
<Card title="Teams Notifications" desc="Send messages to MS Teams." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Sending%20Messages%20to%20Microsoft%20Teams%20with%20Node-Red%2022724ca1258280a1b747f82b6781d7c9" />
<Card title="Email from Node‑RED" desc="Notify via SMTP email." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Sending%20Email%20with%20Node-RED%2022724ca1258280d8bc76e920938ae4a4" />
</Grid>
</Section>

<Section title="Reference" subtitle="Hard data, pinouts, specifications, and tables." id="reference">
<Grid>
<Card title="Technical Specifications" desc="OV80i datasheet." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/OV80i%20Technical%20Specifications%20Sheet%2021524ca12582807bbfeffe08371e9f54" />
<Card title="Node‑RED Custom Blocks" desc="Built‑in custom blocks reference." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Overview%20Node-red%20Custom%20Blocks%2022424ca1258280c2ba51df773469c5fc" />
<Card title="Electrical Specifications" desc="Voltages, currents, and limits." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Electrical%20Specifications%2021524ca12582803d8af9d75ebe029f0f" />
<Card title="Environmental Ratings" desc="Temperature, IP rating, EMC." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Environmental%20Ratings%2021524ca125828080a81add34d9c83a2e" />
<Card title="Pinouts" desc="M12 & Terminal pin references." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Pinouts%20M12%20and%20Terminal%2021524ca1258280c8afcdcdd8f3a8e6f4" />
<Card title="Ports Table" desc="Electrical & communication ports." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Electrical%20&%20Communication%20Ports%20Table%2021524ca1258280808915e0e2423f8468" />
<Card title="Cables" desc="Cable specs & part numbers." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Cable%20Specs%20&%20Part%20Numbers%2021524ca1258280b79fa6f005a2740815" />
<Card title="Accessories" desc="Recommended accessories." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Recommended%20Accessories%20Table%2021524ca125828079a483fa8eb6e0c7d4" />
<Card title="LED Matrix" desc="LED behavior reference." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/LED%20Behavior%20Matrix%2021524ca1258280d99ec4e7612161a277" />
<Card title="I/O Timing" desc="Timing diagrams for I/O." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/I%20O%20Timing%20Diagrams%2021524ca1258280ec9cc4ec577a9e2393" />
<Card title="Lens + FOV" desc="Lens options and FOV table." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Lens%20+%20FOV%20Table%2021524ca1258280519fff843663274" />
<Card title="Exposure & Speed" desc="Exposure, gain & speed." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Exposure,%20Gain%20&%20Processing%20Speed%2021524ca1258280d7b6e6f63b303164fc" />
</Grid>
</Section>




<Section title="Troubleshooting + Maintenance" subtitle="For field repair, debugging, and preventative maintenance." id="troubleshooting-maintenance">
<Grid>
<Card title="Power Issues" desc="Diagnose power problems." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Troubleshooting%20Power%20Issues%2021524ca1258280458013c9a78f11310d" />
<Card title="Network Discovery" desc="Find devices on the network." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/IP%20&%20Network%20Discovery%20Failures%2021524ca1258280668f4fdc8f9a8d370a" />
<Card title="No Trigger/Output" desc="Resolve trigger/output issues." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/No%20Trigger%20or%20Output%2021524ca1258280bc8ad9fea5e9710e7d" />
<Card title="Classifier Not Running" desc="Why models may not run." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Classifier%20Not%20Running%2021524ca1258280738c77f1f43e5d9f0f" />
<Card title="PLC Communication" desc="Fix camera↔PLC comms." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Camera%20to%20PLC%20Communication%20Fails%2021524ca1258280288e8fd331b3a5a350" />
<Card title="Debug Node‑RED" desc="Troubleshoot flows." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Debugging%20Node-RED%2021524ca12582807eb0abd43a8a619360" />
<Card title="Reset Button" desc="Reset procedures for OV80i." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Reset%20Button%20on%20the%20OV80i%2021524ca125828029b3ecda713774cd6f" />
<Card title="Maintenance" desc="Regular maintenance checklist." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Regular%20Maintenance%20Checklist%2021524ca125828062a541df4ba531e785" />
<Card title="Replace Cables" desc="When to replace cables." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/When%20to%20Replace%20Cables%2021524ca1258280518403f2ff7bd4558f" />
<Card title="Aligner Troubleshooting" desc="Fix alignment issues." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Aligner%20Troubleshooting%20Guide%2021f24ca1258280898bbfd608b29974d1" />
<Card title="Retrain the Model" desc="When and how to retrain." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Retrain%20the%20Model%2021624ca1258280ef9f4ee8000b3b1b03" />
</Grid>
</Section>

<Section title="FAQs" subtitle="Quick answers to common questions." id="faqs">
<Grid>
<Card title="Do I Need Internet" desc="Connectivity requirements." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Do%20I%20Need%20Internet%2021524ca125828050a2aeea401632b41b" />
<Card title="Can I Use Wall Power" desc="Powering the device from wall." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Can%20I%20Use%20Wall%20Power%2021524ca12582803d8471c82e0f1963cf" />
<Card title="What if Image is Blurry" desc="Improve image quality." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/What%20if%20the%20Image%20is%20Blurry%2021524ca1258280f1b3eee90540b4d364" />
<Card title="Who Do I Call for Help" desc="Get support contacts." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/Who%20Do%20I%20Call%20for%20Help%2021524ca125828039ae2acb16695fe300" />
<Card title="Good Image Checklist" desc="What to look for in images." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/What%20to%20Look%20for%20in%20a%20Good%20Image%2021524ca12582800e8456e7cafd30b60a" />
<Card title="Ports on the OV80i" desc="Available physical ports." href="/docs/New%20ov80%20doc/Overview%20ai%20Product%20Documentation%2021124ca12582803bb843cda6b4d4e5c6/What%20Ports%20Are%20on%20the%20OV80i%2021524ca1258280dca422c22e425c82f3" />
</Grid>
</Section>
<div className="row">
<div className="col col--4">
<Callout type="tip" title="Quick start">
Begin with <strong>Quick Install → Activation → First‑Time Checklist</strong>.
</Callout>
</div>
<div className="col col--4">
<Callout type="info" title="Good image checklist">
Even lighting, fill the frame, subject in focus. See <em>What to Look for in a Good Image</em>.
</Callout>
</div>
<div className="col col--4">
<Callout type="caution" title="Safety">
Disconnect mains power before changing wiring. Double‑check polarity and torque specs.
</Callout>
</div>
</div>
</div>
</div>
</div>
);
}

<OverviewPreview />